/* RESET DEFAULTS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'MS Sans Serif';
  src: url('sudu7878.github.io\Fonts\ms-sans-serif-1.otf.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}



body {
  background-color: #008080; 
  color: #fffbe0; 
  font-family: "MS Sans Serif", "Microsoft Sans Serif", Arial, sans-serif;
  text-align: center;
  padding: 40px 20px;
  line-height: 1.6;
}
body {
  cursor: url('/Assets/CSS/arrow.cur'), default;
}



header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.logo {
  font-size: 2.5em;
  font-weight: bold;
  color: #fffbe0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: #fffbe0;
  font-size: 1.2em;
  position: relative;
}

nav a.active::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: #fffbe0;
  margin-top: 5px;
}


.avatar, .about-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: white;
  margin: 20px auto 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5em;
  color: #000;
}


h1, h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #fffbe0;
}


.intro, .about-text {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1em;
  padding: 0 10px;
  color: #ffffff;
  line-height: 1.7;
}

.about-text p {
  margin-bottom: 20px;
}


.app-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 60px;
}

.app-icons img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.app-icons img:hover {
  transform: scale(1.2);
}

.note, footer {
  font-size: 0.85em;
  color: #bfbfbf;
  margin-top: 40px;
}
